Description
Symbol used to label point, line, and polygon layers.
Diagram
Overview
|
TEXTSYMBOL
Symbol used to label point, line, and polygon layers.
|
angle optional Restriction of xs:double
Angle of rotation in degrees.
|
|
blockout optional xs:string
Provides a background color behind text.
|
|
font optional xs:string
Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic.
|
|
fontcolor optional xs:string
Font color.
|
|
fontsize optional Restriction of xs:int
Font size.
|
|
fontstyle optional Restriction of xs:string
Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline")
|
|
horizalignment optional Restriction of xs:string
The horizontal alignment for the text symbol.
|
|
rtl optional Restriction of xs:string
Specifies whether the text is drawn from right to left.
|
|
vertalignment optional Restriction of xs:string
The vertical alignment for the text symbol.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
angle | Restriction of xs:double | optional | 0.0 | | Angle of rotation in degrees. |
blockout | xs:string | optional | null | | Provides a background color behind text. |
font | xs:string | optional | | | Font name. The name is case sensitive. If font name uses "&", use "&" instead. For example, ESRI Transportation & Civic should be written as ESRI Transportation & Civic. |
fontcolor | xs:string | optional | | | Font color. |
fontsize | Restriction of xs:int | optional | | | Font size. |
fontstyle | Restriction of xs:string | optional | regular | | Font style. If the value is not regular, it can be any combination of other values, expressed as a comma delimited list (for example, fontstyle="bold,underline") |
horizalignment | Restriction of xs:string | optional | left | | The horizontal alignment for the text symbol. |
rtl | Restriction of xs:string | optional | false | | Specifies whether the text is drawn from right to left. |
vertalignment | Restriction of xs:string | optional | top | | The vertical alignment for the text symbol. |
Examples
Source
<xs:element name="TEXTSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Symbol used to label point, line, and polygon layers.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="0.0" ref="angle">
<xs:annotation>
<xs:documentation>Angle of rotation in degrees.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="blockout" />
<xs:attribute ref="font">
<xs:annotation>
<xs:documentation>Font name. The name is case sensitive.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="fontcolor">
<xs:annotation>
<xs:documentation>Font color.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="fontsize">
<xs:annotation>
<xs:documentation>Font size.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute default="regular" ref="fontstyle" />
<xs:attribute ref="horizalignment" />
<xs:attribute ref="rtl" />
<xs:attribute ref="vertalignment" />
</xs:complexType>
</xs:element>
|
See Also